/* ==========================================
   1. GLOBAL RESET & BASE STYLES
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background-color: #030337; 
  color: #1a1a1a;
  line-height: 1.5;
}

img, video, canvas, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.highlight-orange {
  color: #f26522;
}

.text-stroke-orange {
  color: transparent;
  -webkit-text-stroke: 1.5px #f26522;
}

.text-white {
  color: #ffffff;
}

/* ==========================================
   2. HEADER & NAVIGATION
   ========================================== */
.site-header {
  width: 100%;
  background: #ffffff;
  padding: 12px 6%;
  position: absolute; 
  top: 0;
  left: 0;
  z-index: 100;
}

.header-container {
  max-width: 1400px; 
  margin: 0 auto;
  display: flex;
  justify-content: space-between; 
  align-items: center;
  background: transparent;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  z-index: 101;
}

.header-logo-img {
  height: 38px; 
  width: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-bold {
  font-size: 16px; 
  font-weight: 800;
  color: #1a1a1a;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 9px; 
  color: #888888;
  text-transform: uppercase;
  margin-top: 1px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px; 
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 15px;
  overflow: hidden; 
  border-radius: 30px; 
  z-index: 1;
  transition: color 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0px;
  left: 0;
  background-color: #f26522;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.link-text {
  position: relative;
  z-index: 2;
  pointer-events: none; 
}

.link-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%; 
  aspect-ratio: 1 / 1;
  background: #f27508;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.hover-target:hover .link-bg {
  transform: translate(-50%, -50%) scale(1);
}

.hover-target:hover {
  color: #ffffff; 
}

.btn-book-call {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
  min-width: 140px; 
  height: 40px;     
  padding: 0 20px;
  border: 2px solid #ff6a00;
  border-radius: 50px;
  background: transparent;
  color: #111111;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  overflow: hidden;
}

/* Mobile Toggle Hamburger Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: #1a1a1a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Toggle Animation State */
.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================
   3. BUTTONS & UI COMPONENTS
   ========================================== */
.btn {
  display: inline-block;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: #f26522;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #f26522;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(242, 101, 34, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: #f26522;
  color: #f26522;
  background-color: rgba(242, 101, 34, 0.1);
  transform: translateY(-3px);
}

.btn-large {
  padding: 14px 28px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.section-tagline {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #f26522;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.center-header {
  text-align: center;
  margin-bottom: 50px;
}

.center-header h2 {
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 800;
  color: #111827;
}

/* ==========================================
   4. HERO SECTION
   ========================================== */
.hero-section {
  background: #030337;
  color: #ffffff;
  padding: 140px 0 80px;
}

.hero-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 20px;
}

.hero-subtext {
  font-size: 17px;
  color: #9ca3af;
  margin-bottom: 35px;
  max-width: 500px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}

.stat-num {
  font-size: 26px;
  font-weight: 800;
  display: block;
}

.stat-label {
  font-size: 11px;
  color: #9ca3af;
  font-weight: 700;
}

/* Hero Visuals */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.mockup-card {
  background-color: #0d1322;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 16px;
  width: 240px; 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.card-image-wrapper {
  width: 100%;
  height: 200px;
  background-color: #161f33; 
  border-radius: 12px;
  overflow: hidden;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-header {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-badge {
  position: absolute;
  top: -20px;          
  left: -20px;         
  z-index: 10;         
  background-color: #ff5511;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  box-shadow: 0 0 25px rgba(255, 85, 17, 0.65);
}

.stat-badge .badge-num {
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1;
}

.stat-badge .badge-text {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.95;
}

.card-footer p {
  font-size: 11px;
  color: #d1d5db;
  margin-top: 4px;
}

/* ==========================================
   5. TICKER BAR
   ========================================== */
.ticker-wrapper {
  background: #020224;
  overflow: hidden;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.ticker-track {
  display: inline-block;
  animation: scrollTicker 20s linear infinite;
}

.ticker-track span {
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-right: 40px;
}

@keyframes scrollTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================
   6. PLATFORMS SECTION
   ========================================== */
.platforms-section {
  background: #f9fafb;
  padding: 80px 0;
}

.platforms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.platforms-info h2 {
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #111827;
}

.platforms-info p {
  color: #4b5563;
  margin-bottom: 30px;
  font-size: 16px;
  max-width: 450px;
}

.platforms-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.platform-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.platform-info-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.platform-icon {
  font-size: 20px;
}

.platform-details h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

.platform-details p {
  font-size: 13px;
  color: #6b7280;
}

/* ==========================================
   7. GALLERY / WORK SECTION
   ========================================== */
.gallery-section {
  background-color: #ffffff;
  padding: 80px 0;
  color: #ffffff;
}

.gallery-header {
  margin-bottom: 40px;
}

.gallery-header h2 {
  color: #030337;
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-top: 8px;
}

.gallery-hint {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-top: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tile {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 480px;
  border-radius: 16px;
  overflow: hidden;
  background: #1e293b;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tile:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}

.gallery-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  z-index: 1;
}

.tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg, 
    rgba(0, 0, 0, 0.4) 0%, 
    rgba(0, 0, 0, 0) 40%, 
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 2;
}

.tile-tag {
  position: relative;
  z-index: 3;
  align-self: flex-start;
  background: #f06100;
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tile-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 800;
}

/* ==========================================
   8. STATS COUNTER BAR
   ========================================== */
.stats-section {
  background-color: #ff5511; 
  padding: 60px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: #ffffff;
  text-align: center;
}

.stat-item {
  flex: 1;
}

.stat-number {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 8px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* ==========================================
   9. PROCESS & FEATURES
   ========================================== */
.process-section {
  background: #ffffff;
  padding: 80px 0;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  background: #f9fafb;
  padding: 30px 20px;
  border-radius: 16px;
  border: 1px solid #f3f4f6;
  text-align: center;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
}

.step-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.step-label {
  font-size: 11px;
  font-weight: 800;
  color: #f26522;
  display: block;
  margin-bottom: 10px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #111827;
}

.step-card p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}

/* Features */
.features-section {
  background: #030337;
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.feature-card {
  background: #090e24;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.f-icon {
  font-size: 26px;
  margin-bottom: 15px;
}

.feature-card h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.5;
}

/* ==========================================
   10. TESTIMONIALS & FAQ
   ========================================== */
.testimonials-section {
  background: #f9fafb;
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.testimonial-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-mark {
  font-size: 40px;
  color: #f26522;
  font-weight: 900;
  line-height: 1;
}

.testimonial-card p {
  font-size: 14px;
  color: #374151;
  margin: 15px 0 25px;
  line-height: 1.6;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 38px;
  height: 38px;
  background: #030337;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.author-info strong {
  display: block;
  font-size: 14px;
  color: #111827;
}

.author-info span {
  font-size: 12px;
  color: #6b7280;
}

/* FAQ */
.faq-section {
  background: #ffffff;
  padding: 80px 0;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-question {
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  cursor: pointer;
  text-align: left;
}

.faq-toggle {
  font-size: 20px;
  color: #f26522;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
  padding-bottom: 20px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* ==========================================
   11. AUDIT FORM & FOOTER
   ========================================== */
.footer-audit-section {
  background: #ffffff;
  color: #030337;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.audit-left h2 {
  font-size: clamp(2.2rem, 5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.audit-left p {
  color: #030337;
  margin-bottom: 30px;
  font-size: 16px;
}

.audit-checklist {
  list-style: none;
  margin-bottom: 30px;
}

.audit-checklist li {
  font-size: 15px;
  color: #030337;
  margin-bottom: 12px;
  font-weight: 500;
}

.video-preview-box {
  width: 100%;
  height: 240px; 
  background-color: #0b0f19;
  border-radius: 16px;
  overflow: hidden; 
}

.preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audit-card {
  background: #090e24;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.audit-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 5px;
}

.form-sub {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: #171f38;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #f26522;
}

.form-footnote {
  font-size: 11px;
  color: #6b7280;
  text-align: center;
  margin-top: 15px;
}

/* Footer Bottom Layout */
.main-footer {
  background-color: #030337;
  color: #ffffff;
  padding: 80px 6% 30px 6%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px; 
  color: #f27508;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #cccccc;
}

.footer-column ul li a {
  color: #cccccc; 
  text-decoration: none; 
  transition: color 0.2s ease-in-out; 
}

.footer-column ul li a:hover { 
  color: #f27508; 
}

.location-bold-title {
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 8px;
}

.footer-brand-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.footer-logo-img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.footer-brand-title {
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-brand-subtitle {
  font-size: 14px;
  font-weight: 800;
  color: #f27508;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-bottom {
  max-width: 1400px;
  margin: 60px auto 0 auto;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: #888888;
  font-size: 13px;
}

/* ==========================================
   12. MEDIA QUERIES (TABLETS & MOBILE)
   ========================================== */

/* Tablet Optimization (Max Width: 992px) */
@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #030337;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    transition: right 0.3s ease-in-out;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }

  .main-nav.is-open {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .nav-links a {
    color: #ffffff;
    font-size: 18px;
  }

  .btn-book-call {
    color: #ffffff;
    border-color: #f26522;
  }

  .hero-container,
  .platforms-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Phone Optimization (Max Width: 768px) */
@media (max-width: 768px) {
  .hero-section {
    padding-top: 110px;
  }

  .hero-container {
    text-align: center;
  }

  .hero-subtext {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 20px;
  }

  .hero-right {
    flex-direction: column;
    align-items: center;
  }

  .mockup-card {
    width: 100%;
    max-width: 300px;
  }

  .stat-badge {
    left: 0;
  }

  .stats-section {
    flex-direction: column;
    gap: 30px;
  }

  .process-timeline,
  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .audit-card {
    padding: 24px;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand-column {
    width: 100%;
    justify-content: flex-start;
  }
}